home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / engrave / engrave_out.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  514b  |  25 lines

  1. #ifndef ENGRAVE_OUT_H
  2. #define ENGRAVE_OUT_H
  3.  
  4. /**
  5.  * @file engrave_out.h Functions to faciliate outputing the Engrave information.
  6.  * @brief Provided the needed functions to output the Engrave information into various formats.
  7.  */
  8.  
  9. /**
  10.  * @defgroup Engrave_Out Functions needed to output the Engrave data into
  11.  * different file formats.
  12.  *
  13.  * @{
  14.  */
  15.  
  16. int engrave_edj_output(Engrave_File *engrave_file, const char *path);
  17. int engrave_edc_output(Engrave_File *engrave_file, const char *path);
  18.  
  19. /**
  20.  * @}
  21.  */
  22.  
  23. #endif
  24.  
  25.